All Questions
55 questions
3votes
4answers
271views
simple Rock, paper, scissors game
I just recently started learning how to program and how to use python and after watching a few courses I made a simple Rock paper scissors game where basically the script randomly chooses Rock, paper ...
1vote
1answer
159views
Simple Blackjack game
This is my simple Blackjack game made in Python. I would love some feedback to write better code. ...
3votes
1answer
410views
OOP Blackjack in Python 3.9.9
I've noticed I'm not the first to post this topic. As a matter of fact, I have taken some inspiration from Victor Nguyen Bao's post to help structure my code. Here's the link to his code: Structured ...
2votes
1answer
105views
Python trivia game getting questions and answers off a website
Here is my code that I recently made (I am a beginner). I used BeautifulSoup and Requests to get the data of this website. Please read over my code and tell me how to improve it. Thanks. ...
3votes
1answer
182views
Tic Tac Toe in Python 3.x
I made Tic Tac Toe in Python. Standard code review, please tell me ways to improve. I am very new to Python, so please do not criticize very roundabout ways. Thanks. ...
2votes
1answer
715views
Pong and Breakout games
So I have made 2 games without any internet when on vacation. I have used turtle because I did not install pygame. I was wondering how I could improve my games. Here is the code: Pong: ...
3votes
1answer
118views
An emotion recognition test I designed using Pygame
for my dissertation (in psychology) I created an emotion recognition test that displays an image of a face displaying a certain emotion for a set time, then allows participants to press a button ...
4votes
4answers
3kviews
Short code in Python Rock Paper Scissors
I am studying and practicing Python; this is my Rock-Paper-Scissors game I've built from scratch. I saw this task is for beginners. When writing this in all the examples I saw dozens of lines of code ...
6votes
1answer
115views
A little Python roguelike with mostly using standard libraries
So, I made this in order to practice my Python OOP and algorithms skills, and refactored it a bit after a few months of s tale. May anybody review it in a PR please? Want to see the flaws that could ...
5votes
1answer
423views
Rock, paper, scissors in Python 3
I am new to Python (and to programming). I tried to implement this game in Python and took some help from the code reviews of similar questions posted on this website. ...
2votes
1answer
271views
(Python) Random Number Guessing Game
I'm a beginner currently learning Python. I made a simple program, a random number guessing game, to apply in practice what I have already learned (not much) and hopefully be able to get a better ...
13votes
2answers
18kviews
Simple Python turn based battle game
As I mentioned in my bio, I do not code for a living and too old to switch careers but I do enjoy it as a hobby and I am trying to get better. Also trying to get my teenage son more interested. Anyhow,...
5votes
1answer
2kviews
Beginner 'Peg Solitaire'' game
This time I wanted to make a board game that is very popular in Brazil, it's called 'resta um', it means 'there's only one left'. The idea of the game is that there are holes in which there are pieces ...
7votes
1answer
564views
Blackjack / 21 in Python3
I have created a blackjack game in Python3 but I am worried that it is not very efficient and also there are some problems with it. Problem 1) The player almost always wins unless he goes bust as the ...
6votes
2answers
685views
Scrabble Scorer in Python
I made this Scrabble with care since it will be mainly used by family that will not understand the error codes so that is why I catch basically every possible error, to make it user friendly. I have ...